html,body {
	width: 100%;
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	font-size: 18px;
	color: #4e597c;
	font-family: 'GothamPro',sans-serif;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
}

.fonts-loaded-1 body {
	font-family: 'GothamProSubset';
}

.fonts-loaded-2 body {
	font-family: 'GothamPro',sans-serif;
}

a,input[type="button"],input[type="submit"],button {
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
}

#menu_hamburger {
	display: none;
}

.hamburger-inner,.hamburger-inner::before,.hamburger-inner::after,.hamburger:hover .hamburger-inner,.hamburger:hover .hamburger-inner::before,.hamburger:hover .hamburger-inner::after,.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner::before,.hamburger.is-active .hamburger-inner::after {
	background-color: #fff;
}

#menu_shadow {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1010;
	background: rgba(30,50,93,0.8);
}

#mobile_menu {
	position: fixed;
	left: -380px;
	top: 0;
	width: 300px;
	height: 100%;
	background: #fff;
	z-index: 1020;
	border-top: 1px solid #727d94;
}

#mobile_menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#mobile_menu ul li a {
	display: block;
	padding: 20px 25px;
	font-weight: 500;
	border-bottom: 1px solid #727d94;
	color: #e2ca3d;
	font-size: 20px;
	text-decoration: none;
	background: transparent;
}

#mobile_menu ul li a:hover {
	color: #4e597c;
	background: rgba(25,72,54,0.3);
}

.container {
	max-width: 1110px;
	width: 90%;
	margin: 0 auto;
}

.container.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 40px;
	padding: 30px 0;
	z-index: 1001;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

header .container.flex {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

header #logo img {
    height: 100px;
    margin-top: -10px;
    margin-bottom: -68px;
}

header #main_menu ul {
	padding: 0;
	margin: -4px -2px 0 0;
	list-style: none;
	text-align: right;
}

header #main_menu ul li {
	display: inline-block;
	height: 40px;
	margin-left: 30px;
}

header #main_menu ul li a {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	position: relative;
	color: #8ea3c6;
	font-size: 15px;
	text-decoration: none;
}

header #main_menu ul li a:before {
	content: '';
	display: inline-block;
	position: absolute;
	left: 50%;
	top: -40px;
	width: 5px;
	height: 5px;
	margin-left: -2px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: #e2ca3d;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

header #main_menu ul li a:after {
	content: '';
	display: inline-block;
	position: absolute;
	left: 50%;
	top: -65px;
	width: 1px;
	height: 30px;
	background-color: #727d94;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

header #main_menu ul li a:hover,header #main_menu ul li a.active {
	color: #FDDD31;
}

header #main_menu ul li a:hover:before,header #main_menu ul li a.active:before {
	top: -6px;
}

header #main_menu ul li a:hover:after,header #main_menu ul li a.active:after {
	top: -36px;
}

header.scrolled {
    background-color: rgb(0 0 0 / 80%);
	padding: 10px 0;
}

header.scrolled #main_menu ul li a:hover:before,header.scrolled #main_menu ul li a.active:before {
	top: 2px;
}

header.scrolled #main_menu ul li a:hover:after,header.scrolled #main_menu ul li a.active:after {
	top: -28px;
}

#first_block {
    background-color: #f9f9f9;
	-webkit-background-size: cover;
	background-size: cover;
	-moz-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	height: 760px;
}

.first_text_wrap .left, .first_text_wrap .right {
    width: 50%;
}

.first_text_wrap {
    display: flex;
    text-align: center;
    max-width: 1110px;
    padding: 200px 20px 0;
    margin: 0 auto;
    color: #000;
    flex-direction: row;
    flex-wrap: nowrap;
}
.first_text_wrap img {
    width: 100%;
}
.scrolled #logo img {
    height: 50px;
    margin-top: -5px;
    margin-bottom: 0px;
    filter: invert(1);
}
.scrolled #menu_hamburger .hamburger-inner, .scrolled #menu_hamburger .hamburger-inner:before, .scrolled #menu_hamburger .hamburger-inner:after {
    background-color: #fff;
}

.first_text_wrap .promo_title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 26px;
    text-align: left;
}

.first_text_wrap .promo_subtitle {
    padding: 0 0px;
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
}

.first_text_wrap .promo_btn_wrap {
	margin-bottom: 98px;
}

.first_text_wrap #down_link {
	display: inline-block;
	position: relative;
	width: 50px;
	height: 50px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #fff;
}

.first_text_wrap #down_link i {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.first_text_wrap #down_link:hover {
	border-color: #e2ca3d;
}

.first_text_wrap #down_link:hover i {
	border-color: #e2ca3d;
}
#about h2 span {
        display: block;
}


.white_block {
	background-color: #fff;
	padding: 100px 0;
}

.gray_block {
	background-color: #f8fafe;
	padding: 100px 0;
}

.pic_block {
	padding: 100px 0;
}

.text_col {
	max-width: 540px;
	width: 50%;
}

.text_col p {
	font-size: 16px;
	line-height: 28px;
	margin: 0 0 42px;
}

.text_col ul {
	margin: 0 0 52px;
	padding: 0;
	list-style: none;
}

.text_col ul li {
	font-size: 16px;
	line-height: 28px;
	position: relative;
	padding-left: 33px;
	margin-bottom: 4px;
}

.text_col ul li:last-child {
	margin-bottom: 0;
}

.text_col ul li:before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: #e2ca3d;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
	left: 22px;
	top: 11px;
}

.text_col ol {
	padding: 0;
	margin: 58px 0 51px 0;
	list-style: none;
	counter-reset: counter;
}

.text_col ol li {
	counter-increment: counter;
	padding-left: 80px;
	margin-bottom: 33px;
	position: relative;
	line-height: 26px;
	font-size: 16px;
}

.text_col ol li:before {
	content: "0" counter(counter);
	display: inline-block;
	width: 48px;
	height: 48px;
	border: 1px solid #ccd7ed;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	text-align: center;
	line-height: 48px;
	position: absolute;
	left: 0;
	top: 0;
	color: #e2ca3d;
	font-size: 16px;
	font-weight: 500;
}

.text_col ol li a {
	color: #fe7445;
	font-weight: 700;
	text-decoration: none;
}

.text_col ol li a:hover {
	text-decoration: underline;
}

.img_col {
	max-width: 475px;
	width: 46%;
}

.img_col .img_wrap {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 30px 30px 0 0;
}

.img_col .img_wrap:before,.img_col .img_wrap:after {
	content: '';
	display: inline-block;
	position: absolute;
	background-color: #e2ca3d;
	z-index: 10;
}

.img_col .img_wrap:before {
	width: 5px;
	height: 20px;
	left: 30px;
	top: -20px;
}

.img_col .img_wrap:after {
	width: 20px;
	height: 5px;
	right: -20px;
	bottom: 30px;
}

.img_col .img_wrap img {
	display: block;
	-webkit-box-shadow: 0 0 12px 3px rgba(10,39,73,0.1);
	box-shadow: 0 0 12px 3px rgba(10,39,73,0.1);
	width: 100%;
	position: relative;
	z-index: 1;
}

.img_col .img_wrap .img_border {
	position: absolute;
	left: 30px;
	top: -30px;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 5px solid #e2ca3d;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.h2_title {
	margin: -10px 0 33px 0;
	font-size: 37px;
	line-height: 50px;
	font-weight: 500;
	color: #223263;
}

.h2_title span {
	color: #e2ca3d;
}

.h3_title {
	margin: 0 0 14px 0;
	font-size: 22px;
	font-weight: 700;
	color: #223263;
}

.text_wrap {
	padding: 5px 0 12px;
}

.text_wrap p {
	font-size: 16px;
	line-height: 28px;
	margin: 0 0 42px;
}

.invest_list {
	padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -5px;
}

.invest_list li {
	width: 25%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px;
}

.flip_invest {
	padding-top: calc(100%+10px);
	position: relative;
	-webkit-perspective: 1000px;
	perspective: 1000px;
}

.flip_invest .flip_invest_inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	-webkit-transition: -webkit-transform .8s;
	transition: -webkit-transform .8s;
	-o-transition: transform .8s;
	transition: transform .8s;
	transition: transform .8s,-webkit-transform .8s;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.flip_invest:hover .flip_invest_inner {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.flip_invest .flip_invest_front,.flip_invest .flip_invest_back {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.flip_invest .flip_invest_front {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.flip_invest .flip_invest_front .invest_shadow {
    background-color: rgb(223,196,47,0.2);
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 30%;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap i {
	display: inline-block;
	background-image: url('../images/invest-sprite.png');
	background-repeat: no-repeat;
	width: 82px;
	height: 82px;
	margin-bottom: 9px;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap i#invest_icon_1 {
	background-position: 0 0;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap i#invest_icon_2 {
	background-position: -82px 0;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap i#invest_icon_3 {
	background-position: -164px 0;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap i#invest_icon_4 {
	background-position: -246px 0;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap i#invest_icon_5 {
	background-position: 0 -82px;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap i#invest_icon_6 {
	background-position: -82px -82px;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap i#invest_icon_7 {
	background-position: -164px -82px;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap i#invest_icon_8 {
	background-position: -246px -82px;
}

.flip_invest .flip_invest_front .invest_shadow .invest_front_wrap span {
	display: block;
	color: #fff;
	font-size: 18px;
	line-height: 22px;
	padding: 0 20px;
}

.flip_invest .flip_invest_back {
	background-color: #333333;
	color: #d1daf5;
	font-size: 14px;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.flip_invest .flip_invest_back p {
	margin: 0;
	line-height: 18px;
	padding: 0 30px;
}

#capacity {
	background: #223263 url('../images/screen2-bg.jpg') center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding-top: 94px;
}

#capacity .text_wrap {
	padding: 0 160px;
	margin-bottom: 52px;
}

#capacity .text_wrap p {
	text-align: center;
	color: #fff;
	font-size: 22px;
	line-height: 32px;
}

#capacity .capacity_wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

#capacity .capacity_wrap .capacity_item {
	width: 100%;
	/*width: calc(50% - 15px);*/
	background-color: rgba(134,153,190,0.2);
	padding: 0 65px;
	height: 257px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

#capacity .capacity_wrap .capacity_item .capacity_val {
	position: relative;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 51px;
	margin-top: 6px;
	color: #fff !important;
	text-decoration: none !important;
}

#capacity .capacity_wrap .capacity_item .capacity_val a {
	color: #fff !important;
	text-decoration: none !important;
}

#capacity .capacity_wrap .capacity_item .capacity_val:before {
	content: '';
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: -21px;
	width: 100px;
	height: 2px;
	background-color: #e2ca3d;
	margin-left: -50px;
}

#capacity .capacity_wrap .capacity_item .capacity_text p {
	font-size: 18px;
	margin: 0;
	line-height: 28px;
}

#capacity .capacity_btn_wrap {
	margin-top: 71px;
	text-align: center;
}

#howto .h2_title {
	white-space: nowrap;
}

#howto .img_wrap {
	margin: 30px 0 0 30px;
}

#howto .img_wrap .img_border {
	left: -30px;
}

#howto .img_wrap:before {
	left: auto;
	right: 30px;
}

#howto .img_wrap:after {
	left: -20px;
	right: auto;
}

#portfolio .text_col .h2_title {
	margin-bottom: 50px;
}

#portfolio .text_col p {
	margin-bottom: 10px;
}

ul.projects_list {
	margin: 33px 0 48px;
	padding-right: 29px;
	-webkit-columns: 2;
	columns: 2;
	-webkit-column-gap: 0;
	column-gap: 0;
}

ul.projects_list li {
	padding: 0;
	margin-bottom: 25px;
}

ul.projects_list li:before {
	display: none;
}

ul.projects_list li b {
	display: block;
	color: #4e597c;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
}

ul.projects_list li span {
	display: block;
	font-size: 14px;
	color: #e2ca3d;
}

#portfolio {
	position: relative;
}

.slider_overflow {
	position: absolute;
	right: 0;
	top: 85px;
	overflow: hidden;
	height: 640px;
	width: 610px;
}

.projects_slider_wrap {
	width: 950px;
}

.projects_slider_wrap>.custom_slider_arrows {
	bottom: 6px;
}

#projects_slider {
	padding: 0;
	margin: 0;
	list-style: none;
}

#projects_slider li {
	width: 475px;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.project_item {
	width: 445px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 12px 3px rgba(10,39,73,0.1);
	box-shadow: 0 0 12px 3px rgba(10,39,73,0.1);
}

.project_item .project_pic img {
	width: 445px;
	height: 421px;
	vertical-align: top;
}

.project_item .project_data {
	padding: 30px 40px;
}

.project_item .project_data .project_logo {
	margin-bottom: 20px;
}

.project_item .project_data .project_text p {
	margin: 0;
	font-size: 14px;
	color: #8699be;
	line-height: 16px;
}

#company {
	padding: 100px 0 100px;
}

#company .h2_title {
	margin-bottom: 51px;
	margin-left: -5px;
}

#company p {
	font-size: 16px;
}

#company .company_tabs_wrap {
	padding-top: 13px;
}

.tabs_list {
	padding: 0;
	margin: 0;
	list-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.tabs_list li {
	display: inline-block;
	width: 50%;
}

.tabs_list li a {
	display: block;
	height: 60px;
	line-height: 60px;
	text-align: center;
	width: 100%;
	border-bottom: 5px solid #e3e9f5;
	color: #c7d4ec;
	text-decoration: none;
	font-weight: 700;
	font-size: 22px;
}

.tabs_list li a:hover,.tabs_list li a.active {
	border-color: #e2ca3d;
	color: #223263;
}

.tab_block {
	display: none;
	padding-top: 25px;
}

.tab_block.active {
	display: block;
}

.slider_wrap {
	margin: 0 -15px;
	position: relative;
}

.custom_slider_arrows {
	position: absolute;
	height: 14px;
	width: 116px;
	left: 15px;
	bottom: -76px;
}

.custom_slider_arrows .custom_slider_arrows_wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.custom_slider_arrows .custom_slider_arrows_wrap a {
	display: inline-block;
	height: 14px;
	line-height: 14px;
	width: 50px;
	text-decoration: none;
}

.custom_slider_arrows .custom_slider_arrows_wrap a span {
	display: inline-block;
	position: relative;
	height: 2px;
	width: 25px;
	vertical-align: middle;
	background-color: #c7d4ec;
	-webkit-box-shadow: 0 0 1px 0 #c7d4ec;
	box-shadow: 0 0 1px 0 #c7d4ec;
	transition: all .2s ease;
}

.custom_slider_arrows .custom_slider_arrows_wrap a span:before,.custom_slider_arrows .custom_slider_arrows_wrap a span:after {
	content: '';
	display: inline-block;
	position: absolute;
	width: 14px;
	height: 2px;
	background-color: #c7d4ec;
}

.custom_slider_arrows .custom_slider_arrows_wrap a:hover span {
	width: 50px;
	background-color: #e2ca3d;
}

.custom_slider_arrows .custom_slider_arrows_wrap a:hover span:before,.custom_slider_arrows .custom_slider_arrows_wrap a:hover span:after {
	background-color: #e2ca3d;
}

.custom_slider_arrows .custom_slider_arrows_wrap a.custom_prev {
	text-align: right;
}

.custom_slider_arrows .custom_slider_arrows_wrap a.custom_prev span:before {
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg);
	left: 0;
	top: 3px;
}

.custom_slider_arrows .custom_slider_arrows_wrap a.custom_prev span:after {
	-webkit-transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	-o-transform: rotate(-30deg);
	transform: rotate(-30deg);
	left: 0;
	top: -3px;
}

.custom_slider_arrows .custom_slider_arrows_wrap a.custom_next span:before {
	-webkit-transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	-o-transform: rotate(-30deg);
	transform: rotate(-30deg);
	right: 0;
	top: 3px;
}

.custom_slider_arrows .custom_slider_arrows_wrap a.custom_next span:after {
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg);
	right: 0;
	top: -3px;
}

.slider_wrap {
	height: 518px;
}

ul.slider {
	padding: 0;
	margin: 0;
	list-style: none;
	height: 518px;
}

ul.slider li {
	width: 33.33%;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}

.team_item {
	background-color: #fff;
	-webkit-box-shadow: 0 0 12px 3px rgba(10,39,73,0.1);
	box-shadow: 0 0 12px 3px rgba(10,39,73,0.1);
}

.team_item .team_pic img {
	max-width: 350px;
	width: 100%;
	height: auto;
	vertical-align: top;
}

.team_item .team_data {
	padding: 28px 30px;
}

.team_item .team_data .team_position {
	display: inline-block;
	color: #8699be;
	font-size: 14px;
	margin-bottom: 6px;
	line-height: 18px;
	height: 36px;
}

.team_item .team_data .team_name {
	font-size: 18px;
	font-weight: 500;
	color: #223263;
}

.lSPager {
	display: none;
}

.lSAction>a {
	top: auto;
	bottom: -83px;
	background: #eee;
}

.lSAction>.lSPrev {
	left: 38px;
}

.lSAction>.lSNext {
	left: 102px;
	right: auto;
}

.company_button_wrap {
	text-align: right;
	margin-top: 37px;
}

#map_block {
	height: 580px;
}

#map {
	height: 580px;
	background: url('../images/map-bg.jpg') center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
}

#map .map_overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 0;
	color: #fff;
	font-size: 20px;
	padding: 275px 30px 0;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	background: rgba(30,50,93,0.8);
}

#map .map_overlay:hover {
	opacity: 1;
}

#contacts {
	padding: 100px 0;
}

#contacts .h2_title {
	margin-left: -3px;
	margin-bottom: 45px;
}

.contact_text_wrap {
	max-width: 475px;
	width: 45%;
}

.contact_text_wrap p {
	font-size: 16px;
	line-height: 28px;
}

.contact_form_wrap {
	max-width: 445px;
	width: 48%;
	margin-top: -16px;
}

.contact_form_wrap .form_text p {
	font-size: 13px;
	line-height: 16px;
	margin: 20px 0 0 0;
	color: #4e597c;
	font-weight: 400;
}

.contact_form_wrap .form_text a {
	color: #fe7445;
	text-decoration: none;
}

.contact_form_wrap .form_text a:hover {
	text-decoration: underline;
}

.contacts_email {
	margin: 39px 0 40px;
}

.contacts_email .contacts_label {
	font-size: 18px;
	color: #4e597c;
	font-weight: 500;
	margin-bottom: 15px;
	margin-left: -2px;
}

.contacts_email .email_val a {
	position: relative;
	display: inline-block;
	color: #e2ca3d;
	font-size: 14px;
	text-decoration: none;
}

.contacts_email .email_val a:after {
	content: '';
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 100%;
	height: 1px;
	background-color: #dde6fe;
	transition: all .2s ease;
}

.contacts_email .email_val a:hover {
	color: #2862cd;
}

.contacts_email .email_val a:hover:after {
	background-color: #fff200;
}

footer {
	padding: 40px 0 40px;
    background-color: #333;
}

footer .footer_logo_block {
    width: 220px;
    text-align: center;
}
footer .footer_logo_block img {
    filter: invert(1);
}

footer #footer_logo {
	margin-bottom: 9px;
}

footer .slogan {
	font-size: 12px;
	color: #8ea3c6;
	margin-bottom: 50px;
	line-height: 15px;
}

footer .copy {
	margin: 0;
	color: #617295;
	font-size: 14px;
}

footer .footer_menu_wrap {
	transition: none i !important;
	width: calc(100% - 255px);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

footer .footer_menu_wrap .footer_menu {
	position: relative;
}

footer .footer_menu_wrap .footer_menu>div {
	transition: none i !important;
	color: #fff;
	font-size: 15px;
	margin-bottom: 29px;
}

footer .footer_menu_wrap .footer_menu>div:after {
	transition: none i !important;
	content: '';
	display: inline-block;
	width: 50px;
	height: 2px;
	background-color: #e2ca3d;
	position: absolute;
	left: 0;
	top: 20px;
}

footer .footer_menu_wrap .footer_menu:first-child ul li {
	transition: none i !important;
	width: 125px;
}

footer .footer_menu_wrap .footer_menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

footer .footer_menu_wrap .footer_menu ul.two_cols {
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
	-webkit-column-gap: 0;
	column-gap: 0;
}

footer .footer_menu_wrap .footer_menu ul.two_cols li {
	transition: none i !important;
	width: 160px;
}

footer .footer_menu_wrap .footer_menu ul li {
	margin-bottom: 16px;
	line-height: 14px;
	font-size: 13px;
	color: #8ea3c6;
	width: 190px;
}

footer .footer_menu_wrap .footer_menu ul li a {
	display: inline-block;
	font-size: 13px;
	color: #8ea3c6;
	text-decoration: none;
}

footer .footer_menu_wrap .footer_menu ul li a:after {
	content: '';
	display: inline-block;
	width: 0;
	height: 1px;
	background-color: #e2ca3d;
	position: absolute;
	left: 0;
	bottom: -2px;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

footer .footer_menu_wrap .footer_menu ul li a:hover {
	color: #e2ca3d;
}

footer .footer_menu_wrap .footer_menu ul li a:hover:after {
	width: 100%;
}

.thnks_text {
	margin: 0;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
}

input[type='text'],input[type='email'],input[type='phone'],input[type='number'],input[type='tel'],textarea {
	display: inline-block;
	width: 100%;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	height: 49px;
	line-height: 48px;
	color: #4e597c;
	font-size: 16px;
	font-family: 'GothamPro',sans-serif;
	border-bottom: 1px solid #e3e9f5;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	outline: 0 none;
}

input[type='text']:focus,input[type='email']:focus,input[type='phone']:focus,input[type='number']:focus,input[type='tel']:focus,textarea:focus {
	border-bottom: 1px solid #aac7fc;
	color: #e2ca3d;
}

::-webkit-input-placeholder {
	color: #4e597c;
	overflow: visible;
}

::-moz-placeholder {
	color: #4e597c;
	overflow: visible;
}

:-ms-input-placeholder {
	color: #4e597c;
	overflow: visible;
}

:-moz-placeholder {
	color: #4e597c;
	overflow: visible;
}

.has_err input,.has_err textarea {
	border-bottom: 1px solid #f8a49e;
	color: #f24a3e;
}

textarea {
	padding: 15px 0;
	line-height: 20px;
	height: 79px;
}

.form_row {
	margin-bottom: 18px;
}

.form_btn {
	margin-top: 36px;
}

.form_btn .btn {
	width: 325px;
}

.jq-file {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

.jq-file .jq-file__name {
	padding: 0 30px 0 0;
	border-radius: 0;
	border-left: 0;
	border-right: 0;
	border-top: 0;
	border-bottom: 1px solid #e3e9f5;
	height: 46px;
	line-height: 44px;
	color: #4e597c;
	font-size: 16px;
	font-family: 'GothamPro',sans-serif;
}

.jq-file .jq-file__browse {
	top: 0;
	right: 0;
	width: 30px;
	height: 45px;
	border: 0;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	background-color: #fff;
	font-size: 20px;
	line-height: 48px;
	color: #e2ca3d;
	padding: 0;
	text-align: center;
}

.jq-file:hover .jq-file__browse {
	background-color: #fff;
}

.jq-file input {
	width: 100%;
	height: 100%;
}

.jq-file.focused .jq-file__name {
	border-left: 0;
	border-right: 0;
	border-top: 0;
	border-bottom: 1px solid #aac7fc;
	color: #e2ca3d;
}

.order_form_wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.order_form_wrap .order_form_col {
	width: 45.4%;
}

.order_form_wrap .order_form_col .form_label {
	color: #4e597c;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
}

.order_form_wrap .order_form_col input[type='text'],.order_form_wrap .order_form_col input[type='email'],.order_form_wrap .order_form_col input[type='phone'],.order_form_wrap .order_form_col input[type='number'],.order_form_wrap .order_form_col input[type='tel'],.order_form_wrap .order_form_col textarea {
	height: 40px;
	line-height: 40px;
	padding-top: 2px;
	font-size: 13px;
}

.order_form_wrap .order_form_col .jq-file .jq-file__name {
	font-size: 13px;
}

.order_form_wrap .form_text p {
	font-size: 13px;
	line-height: 24px;
	margin: 27px 0 0 0;
	color: #4e597c;
	font-weight: 400;
}

.order_form_wrap .form_text a {
	color: #fe7445;
	text-decoration: none;
}

.order_form_wrap .form_text a:hover {
	text-decoration: underline;
}

.btn {
	border: 0;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	height: 65px;
	line-height: 65px;
	text-align: center;
	padding: 0 37px;
	font-size: 16px;
	font-weight: 700;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 255px;
}

.btn:hover {
	text-decoration: none;
}

.btn.btn-orange {
	color: #fff;
	background-color: #fe7445;
}

.btn.btn-orange:hover {
	background-color: #e9673b;
}

.btn.btn-orange:active {
	background-color: #df5a2d;
}

.btn.btn-blue {
	color: #fff;
	background-color: #e2ca3d;
}

.btn.btn-blue:hover {
	background-color: #fff200;
}

.btn.btn-blue:active {
	background-color: #2862cd;
}

.btn.btn-gray {
	color: #4e597c;
	background-color: #e3e9f5;
}

.btn.btn-gray:hover {
	background-color: #cbd1dd;
}

.btn.btn-gray:active {
	background-color: #b7bdc9;
}

.btn.btn-small {
	height: 35px;
	line-height: 35px;
	min-width: 155px;
	font-size: 14px;
}

.btn.disabled,.btn.disabled:hover {
	opacity: .8;
	cursor: not-allowed;
}

.leaflet-top {
	top: 50%;
	margin-top: -70px;
}

.leaflet-touch .leaflet-bar a:first-child {
	-webkit-border-top-left-radius: 15px;
	border-top-left-radius: 15px;
	-webkit-border-top-right-radius: 15px;
	border-top-right-radius: 15px;
}

.leaflet-touch .leaflet-bar a:last-child {
	-webkit-border-bottom-left-radius: 15px;
	border-bottom-left-radius: 15px;
	-webkit-border-bottom-right-radius: 15px;
	border-bottom-right-radius: 15px;
}

.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar {
	border: 0;
	-webkit-box-shadow: 0 0 10px #999;
	box-shadow: 0 0 10px #999;
}

.leaflet-bar {
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}

.leaflet-bar a {
	border: 0;
}

.leaflet-control-zoom a {
	border-bottom: 2px solid #efefef;
}

.mobile_hide {
	display: block;
}

.mobile_show {
	display: none;
}

#files_list_contact {
	margin-top: 20px;
}

.files_list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.files_list li {
	margin-bottom: 10px;
}

.files_list li:last-child {
	display: none;
}

.files_list li>input {
	display: none;
}

.files_list li .fake_file_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.files_list li .fake_file_name {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	border-bottom: 1px solid #e3e9f5;
	background-color: #fff;
	width: calc(100% - 50px);
	font-size: 13px;
	color: #4e597c;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.files_list li .fake_file_name i {
	opacity: .7;
}

.del_file_link {
	display: inline-block;
	width: 30px;
	height: 30px;
	color: #fff;
	text-align: center;
	line-height: 30px;
	font-size: 24px;
	background: #fe7445;
	opacity: .8;
	text-decoration: none;
}

.del_file_link:hover {
	opacity: 1;
}

.lSSlideWrapper,.usingCss {
	transition-duration: inherit i !important;
}

.footer_menu {
	transition: none !important;
}